home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / prg_casm / snip9611.zip / W_WRAP.H < prev    next >
C/C++ Source or Header  |  1996-11-24  |  406b  |  17 lines

  1. /* +++Date last modified: 07-Nov-1995 */
  2.  
  3. /* w_wrap.h */
  4. /* prototypes for the functions in w_wrap.c */
  5.  
  6. #ifndef W_WRAP__H
  7. #define W_WRAP__H
  8.  
  9. #include <stddef.h>     /* For size_t     */
  10. #include <stdio.h>      /* For FILE       */
  11.  
  12. char *word_wrap(char *string, size_t line_len);
  13. void set_tab_size(size_t size);
  14. void center(FILE *file, char *string, size_t width);
  15.  
  16. #endif /* W_WRAP__H */
  17.